// JavaScript Document jQuery(document).ready(function($){ $('#menu_trigger').click(function(){ $('#mobile_menu').slideToggle(); $('body').toggleClass('menu-opened'); }); $('.type_switch li a').click(function () { //console.log('hi'); $(this).parent().parent().find('li').removeClass('active'); $(this).parent().addClass('active'); let gtype = $(this).attr('data-gtype'); if( gtype == 'jodi' ){ $('.result_table tbody').find('tr').hide(); $('.result_table tbody').find('tr.jodi').show(); }else{ $('.result_table tbody').find('tr').hide(); $('.result_table tbody').find('tr:not(.jodi)').show(); } return false; }) });